what is difference between method overloading and method overriding
4696
19-Oct-2010
Pushpendra Singh
08-Nov-2010Method Overriding is achieved when a subclass overrides non-static methods defined in the superclass, following which the new method implementation in the subclass that is executed.
The new method definition must have the same method signature and return type.